
html body {
  font-family: 'Google Sans Display', Arial, Helvetica, sans-serif !important;
}

/* Feature cards row */
.feat-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* margin: 40px 0; */
}

.feat-card {
    background: #f9f9f9;
    border-radius: 25px;
    padding: 20px;
    text-align: start;
    box-shadow: 10px;
}

.feat-card img {
    width: 40px;
    margin-bottom: 10px;
}

.feat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feat-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Testimonial */
.feat-testimonial {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.feat-testimonial blockquote {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.feat-testimonial .author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.feat-testimonial .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* template brand woilink button */

.tempfloatbrand .bdo-button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.tempfloatbrand .bdo-dark-button {
    background: rgba(255, 255, 255, 0.8);
    color: #35393b;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    height: 48px;
    padding: 12px 16px;
    border: none;
    border-radius: 9999px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tempfloatbrand .bdo-dark-button:hover {
    transform: translateY(-1px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    background: #f9fafb;
}

.tempfloatbrand .bdo-dark-button:active {
    transform: translateY(0);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.tempfloatbrand .bdo-dropdown-container {
    position: relative;
}

.tempfloatbrand .bdo-dropdown-arrow {
    transition: transform 0.2s ease;
}

.tempfloatbrand .bdo-dropdown-button.active .bdo-dropdown-arrow {
    transform: rotate(180deg);
}

.tempfloatbrand .bdo-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: -35px;
    right: 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15), 0px 0px 0px 1px rgba(255, 255, 255, 0.05);
    padding: 12px;
    margin-bottom: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tempfloatbrand .bdo-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.tempfloatbrand .bdo-dropdown-item {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tempfloatbrand .bdo-dropdown-item:last-child {
    margin-bottom: 0;
}

.tempfloatbrand .bdo-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tempfloatbrand .bdo-dropdown-item:hover::before {
    left: 100%;
}

.tempfloatbrand .bdo-black-button {
    background: linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(100, 100, 100, 1) 100%);
    color: #ffffff;
    box-shadow: 0px 4px 12px rgba(31, 41, 55, 0.3);
}

.tempfloatbrand .bdo-black-button:hover {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0px 8px 20px rgba(31, 41, 55, 0.4);
}

.tempfloatbrand .bdo-green-button {
    background: linear-gradient(90deg, rgba(1, 152, 176, 1) 0%, rgba(65, 185, 130, 1) 50%, rgba(122, 215, 90, 1) 100%);
    color: #ffffff;
    box-shadow: 0px 4px 12px rgba(5, 150, 105, 0.3);
}

.tempfloatbrand .bdo-green-button:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0px 8px 20px rgba(5, 150, 105, 0.4);
}

.tempfloatbrand .bdo-pink-button {
    background: linear-gradient(135deg, #f4325e 0%, #be185d 100%);
    color: #ffffff;
    box-shadow: 0px 4px 12px rgba(219, 39, 119, 0.3);
}

.tempfloatbrand .bdo-pink-button:hover {
    background: linear-gradient(135deg, #f4325e 0%, #9d174d 100%);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0px 8px 20px rgba(219, 39, 119, 0.4);
}

.tempfloatbrand .bdo-dropdown-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.tempfloatbrand .bdo-close-button {
    background: rgba(255, 255, 255, 0.8);
    color: #35393b;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    height: 28px;
    width: 28px;
    padding: 8px;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    display: none;
}




.partner-woi {
    margin-top: 100px !important;
}


.partner-woi-card {

    margin-top: 90px;
    border-radius: 60px;

}



.img-fluid {
    border-radius: 10px;
}

.feat-img img {
    border-radius: 20px;
}

/* --- Partnership Grid --- */
.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
    }
}

/* --- Partnership Card --- */
.partnership-card-one img {
    border-radius: 10px;
    max-width: 200px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* --- Step Block --- */
.step-block {
    border-radius: 30px;
    padding: 20px;
}

/* --- Feature Section --- */
.feat-main-feture {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
    justify-items: center;
    padding: 20px 6px;
    border-radius: 50px;
    /* border-bottom-right-radius: 90px;
    border: 1px solid #eeeeee; */
}

.featimagee img {
    width: 100%;
    height: 55vh; /* 60% of viewport height */
    object-fit: cover;
}

@media (max-width: 1024px) {
    .feat-main-feture {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
        border-radius: 30px;
        border-bottom-right-radius: 50px;
    }
}

/* --- Partner Text --- */
.partner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
}

.partner-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.1666666667;
    letter-spacing: -.5px;
}

.partner-text p {
    font-size: 1.5rem;
    max-width: 700px;
    line-height: 1.6;
}

.partners-ft{
    display: flex;
  gap: 10px;
}

/* Responsive Partner Text */
@media (max-width: 768px) {

    .partners-ft{
  flex-wrap: wrap;
    }
    .partner-text h1 {
        font-size: 2.2rem;
    }    
    
    .partner-feat-icone {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;  
        gap: 15px;  
   
        padding: 20px;
        border-radius: 30px;
        border-bottom-right-radius: 50px;
    }

    .partner-feat-card {
        border-radius: 0 !important;
        flex: 1 1 100%;  
        max-width: 100%; 
        text-align: center;  
    }
    .partner-text p {
        font-size: 1.1rem;
        max-width: 100%;
    }.feat-main-feture{
        border-radius: 0px;
        margin-top: -53px;
    }.featimagee img{
                border-radius: 0px;

    }.feat-testimonial blockquote{
          font-size: 1rem !important;
    font-weight: 600;
     }.feat-testimonial{
      margin-bottom: 0 !important;
      padding: 10px !important;
      margin-top: 0px !important;
     }
}






 .partnerwoi1-hero {
 
  background-size: cover;
  background-position: right center;
  min-height: clamp(520px, 70vh, 548px);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

 

.partnerwoi1-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Pill, Heading, Sub, Button */
.partnerwoi1-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pill-bg, #1f1f1f);
  color: var(--text, #fff);
  border: 1px solid var(--pill-border, #333);
  border-radius: 9999px;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.partnerwoi1-h1 {
  color: var(--heading, #fff);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 2.9rem;
  line-height: 1.1666666667;
  letter-spacing: -.5px !important;
  
}

.partnerwoi1-sub {
  color: var(--muted, #ccc);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 28px;
}

.partnerwoi1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--primary, #2b78ff);
  color: #fff;
  border: 0;
  border-radius: var(--radius, 8px);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(43, 120, 255, 0.35);
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.partnerwoi1-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 10px 22px rgba(43,120,255,0.45); 
}
.partnerwoi1-btn:active { 
  transform: translateY(0); 
  box-shadow: 0 6px 18px rgba(43,120,255,0.35); 
}
.partnerwoi1-btn:focus { 
  outline: 2px solid #9bc1ff; 
  outline-offset: 2px; 
  border-radius: calc(var(--radius,8px) + 2px); 
}

/* --- Responsive Hero Adjustments --- */
@media (max-width: 1024px) {
  .partnerwoi1-hero { background-position: center; }
  .partnerwoi1-container { padding: 20px; }
  .partnerwoi1-content { max-width: 100%; }
}

@media (max-width: 640px) {
  .partnerwoi1-content { padding-left: 8px; align-items: center; text-align: center; }
  .partnerwoi1-pill { font-size: 13px; padding: 8px 12px; }
  .partnerwoi1-h1 { font-size: clamp(28px, 8vw, 48px); }
  .partnerwoi1-sub { font-size: clamp(14px, 4vw, 16px); }
  .partnerwoi1-btn { padding: 12px 20px; font-size: 15px; }
}



  



/* Dashboard container */
.dashboard {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    width: 39%;
}

/* Row containers */
.dashboard-one, .dashboard-two {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* all cards same height */
    gap: 15px; /* reduced gap between cards */
    width: 100%;
}

 .cards {

    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 180px; 
}

 .clicks-card, .visits-card {
    flex: 2;  
    width: 90%;
        border-radius: 5%;  
}

.plays-card, .sales-card {
    flex: 1;  
        width: 90%;
            border-radius: 10%;  
}

/* Clicks Card */
.clicks-card {
    background-color: #6b6f52;
}

/* Image inside clicks-card */
.clicks-card-image {
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/300x180');  
    background-size: cover;
    background-position: center;
    border-radius: 15%; /* Match card border-radius */
}

/* Track Plays Card */
.plays-card {
    background-color: #d4c5e8;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Sales Card */
.sales-card {
    background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Visits Card */
.visits-card {
    background-color: #001a4d;
    padding: 25px 30px;
}

 
 .clicks-value { font-size: 48px; }
.visits-value { font-size: 52px; }




 @media (max-width: 1024px) {
    .partnerwoi1-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .dashboard {
        width: 100%;
    }

    .dashboard-one, .dashboard-two {
        flex-direction: column;
        gap: 15px;
    }

    .cards {
        width: 100% !important; 
        height: auto;  
    }

    .clicks-card, .visits-card,
    .plays-card, .sales-card {
        width: 100% !important;
        flex: unset;
    }    .dashboard {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .dashboard-one .cards,
    .dashboard-two .cards {
        display: none;
    }

    .dashboard-one .clicks-card {
        display: flex;
        width: 100%;
        max-height: 200px; 
        min-height: 300px;
        padding: 0;
        margin: 0 auto;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }    .partnerwoi1-hero {
        height: auto;
        min-height: 100vh;  
        padding-bottom: 20px; 
    } 
}

 .dashboard-one {
    display: flex; 
}

@media (max-width: 640px) {
    .dashboard {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .dashboard-one .cards,
    .dashboard-two .cards {
        display: none;
    }

    .dashboard-one .clicks-card {
        display: flex;
        width: 100%;
        max-height: 100px; 
        min-height: 200px;
        padding: 0;
        margin: 0 auto;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }    .partnerwoi1-hero {
        height: auto;
        min-height: 100vh;  
        padding-bottom: 20px; 
     
    }.partnerwoi-glass{
      display: none !important;
    }

  }


@media (max-width: 768px){
  .partnerwoi1-hero{
        height: auto;
        min-height: 74vh;  
        padding-bottom: 20px; 
  }.partnerwoi1-content {
    margin-top: 40px;
  }
}

















.partner-feat-icone{
    display: flex;
    justify-content: center;
   
}

.banner-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;

    /* Glass + new gradient background */
    background: linear-gradient(
        135deg, 
        rgba(6, 49, 88, 0.3) 0%,  /* purple */
        rgba(38, 36, 133, 0.3) 100% /* teal */
    ) !important;  
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;

    color: #fff !important; 
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    letter-spacing: 0.2px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    
}

 
.btn-spacing {
    margin-right: 8px; 
}

.btn-spacing:last-child {
    margin-right: 0;  
}






 

/* Container */
.partnershipWoi-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 1rem;
}

.partnershipWoi-header {
  text-align: center;
  margin-bottom: 2.5rem;
  z-index: 10;
  position: relative;
}

.partnershipWoi-header h2 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.partnershipWoi-header p {
  font-size: 1rem;
}

/* Scroll buttons */
.partnershipWoi-scroll-buttons {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1160px;
  transform: translateX(-50%);
  justify-content: space-between;
  gap: 1rem;
  z-index: 20;
}

.partnershipWoi-scroll-button {
  background-color: #fff;
  color: #000;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.2s;
}

.partnershipWoi-scroll-button:hover {
  background-color: #ccc;
}

@media(min-width: 1024px) {
  .partnershipWoi-scroll-buttons {
    display: flex;
  }
}

/* Cards container */
.partnershipWoi-cards-container {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  height: 60vh;
  align-items: center;
}

@media(min-width: 640px) {
  .partnershipWoi-cards-container {
    height: 70vh;
  }
}
















/* Card */
.partnershipWoi-card {
  position: relative;
  min-width: 400px;
  max-width: 320px;
  flex: 0 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  background-position: center;
  height: 54vh !important;
}

@media(min-width: 1024px) {
  .partnershipWoi-card {
    height: 45vh;
  }
}

/* Badge colors */
.partnershipWoi-badge {
  position: absolute;
  top: 1.25rem;
  left: 1rem;
  padding: 0.25rem 1rem;
  font-size: 100%;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-block;
}

/* Badge colors for new context */
.partnershipWoi-badge-ecommerce { background-color: #FEF3C7; color: #000; z-index: 99; }  
.partnershipWoi-badge-marketing { background-color: #A7F3D0; color: #000; z-index: 99; }  
.partnershipWoi-badge-consulting { background-color: #FCE7F3; color: #000; z-index: 99; }  

/* Overlay effects */
.partnershipWoi-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background-color: rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.partnershipWoi-card:hover .partnershipWoi-card-overlay {
  background-color: rgba(0,0,0,0.2);
}

.partnershipWoi-card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.2), transparent);
  border-radius: 1.5rem;
  transition: all 0.3s;
}

.partnershipWoi-card:hover .partnershipWoi-card-gradient {
  opacity: 0;
}

/* Card content */
.partnershipWoi-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
}

.partnershipWoi-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
    color: white;

}

.partnershipWoi-card-desc {
  font-size: 16px;
  color: white;
      font-weight: 500;
}

 
 

.partnershipWoi-card-cta a {
background:#1a73e8;

  color: #fff;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  align-items: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
      font-size: 16px;
    font-weight: 300;
    width: 153px;
    display: flex;
    justify-content: center;
    z-index: 99;
 }

 .partnershipWoi-card-cta a {
  color: white;
  text-decoration: none;
  transition: none;
}

.partnershipWoi-card-cta a:hover {
  color: white;
  text-decoration: none;
}


 

/* Prevent overlays from blocking clicks */
.partnershipWoi-card-overlay,
.partnershipWoi-card-gradient {
  pointer-events: none;
}


.partner-woii {
  display: flex;
  gap: 2.5rem;           
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
   align-items: center;
  justify-content: center !important;
}

@media(max-width: 1024px) {
  .partner-woii {
    display: flex;
    justify-content: start !important;
   
  }
}

 




.partnershipWoi-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  min-height: 6rem;
}

.partnershipWoi-card-title,
.partnershipWoi-card-desc {
  opacity: 1;
  transition: all 0.4s ease;
}



.partnershipWoi-card-cta {
  position: relative;
  display: flex;
  justify-content: start;
  width: 100% !important;
   
 
 }







 @media (max-width: 640px) {
    .partner-woii {
        flex-direction: column;  
        gap: 1rem;
        padding: 0.5rem;
        height: auto; 
        align-items: center;
        justify-content: center;
    }

    .partnershipWoi-card {
        min-width: 90%;  
        max-width: 90%;
        height: 45vh;  
        border-radius: 1rem; 
    }

    .partnershipWoi-card-content {
        min-height: auto;
    }

    .partnershipWoi-card-cta {
 
        justify-content: center;
    }
}



















 




.partner-faq{
  margin-top: -10px;
}




.partnerwoi2-section {
  max-width: 1625px; /* or your preferred width */
  width: 100%;
  margin: 0 auto; /* keeps it centered */
}



.partnercard- {
    background-color: #ffffff;  
    border: 1px solid #d1d5db;  
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.1);  */
    width: 450px; /* Fixed same width for all cards */
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}


.feat-testimonial {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.feat-testimonial blockquote {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.feat-testimonial .author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.feat-testimonial .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


/* Mobile-specific adjustments */
@media (max-width: 640px) {
    .partnercard- {
        width: 90% !important;  /* ensures it overrides other widths */
        padding: 20px !important;  /* force the padding */
        flex: 1 1 100%;  /* make sure it takes full width in flex layout */
        box-sizing: border-box; /* ensures padding is included in width */
    }

    .partnerapllybtn {
        width: 100% !important;
    }
}






















.partnerwoi-glass {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 40px;
}






.partnerwoi1-container {
    display: flex;
    justify-content: space-between;  
    align-items: flex-start;         
    flex-wrap: wrap;                
    max-width: 1300px !important;    
    width: 100%;             
    padding: clamp(20px, 4vw, 40px);
    gap: 1.5rem;                     
    margin: 0 auto;
}














